home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Esportes / soccofobia.swf / scripts / DefineButton2_113 / BUTTONCONDACTION on(press).as
Text File  |  2008-09-25  |  612b  |  30 lines

  1. on(press){
  2.    if(_root.niv == 5)
  3.    {
  4.       _root.gotoAndPlay("Challenge");
  5.    }
  6.    else if(_root.niv > 0)
  7.    {
  8.       if(_root.kong == true)
  9.       {
  10.          if(niv == 1)
  11.          {
  12.             _root.kongregateScores.setMode("Easy");
  13.          }
  14.          if(niv == 2)
  15.          {
  16.             _root.kongregateScores.setMode("Normal");
  17.          }
  18.          if(niv == 3)
  19.          {
  20.             _root.kongregateScores.setMode("Hard");
  21.          }
  22.          if(niv == 4)
  23.          {
  24.             _root.kongregateScores.setMode("Nuts");
  25.          }
  26.       }
  27.       _root.gotoAndPlay("Game");
  28.    }
  29. }
  30.